home *** CD-ROM | disk | FTP | other *** search
- package com.google.analytics.core
- {
- public class ServerOperationMode
- {
-
- public static const both:ServerOperationMode = new ServerOperationMode(2,"both");
-
- public static const remote:ServerOperationMode = new ServerOperationMode(1,"remote");
-
- public static const local:ServerOperationMode = new ServerOperationMode(0,"local");
-
-
- private var _value:int;
-
- private var _name:String;
-
- public function ServerOperationMode(value:int = 0, name:String = "")
- {
- super();
- _value = value;
- _name = name;
- }
-
- public function valueOf() : int
- {
- return _value;
- }
-
- public function toString() : String
- {
- return _name;
- }
- }
- }
-